home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / editor / cvtmixc.zip / SHOWMIXC.BAT < prev    next >
DOS Batch File  |  1995-12-08  |  1KB  |  39 lines

  1.     @ECHO OFF
  2.  
  3.     CLS
  4.     ECHO If you have not yet read the documentation in the text file
  5.     ECHO CVT2MIXC.POM, please press Ctrl-C to cancel this test.
  6.     ECHO  
  7.     ECHO NOTE:  Before running this test, you might also find it
  8.     ECHO instructive to view the file CVT2MIXC.INP -- the input file.
  9.     ECHO As you will see, it is entirely in UPPERCASE.  This test run
  10.     ECHO will place a converted (mixed case) version in the file
  11.     ECHO CVT2MIXC.OUT, which can be viewed with a generic text editor.
  12.     ECHO  
  13.     PAUSE
  14.  
  15.     POM CVT2MIXC CVT2MIXC.INP CVT2MIXC.OUT
  16.     IF ERRORLEVEL 1 GOTO QUIT
  17.     CLS
  18.     IF EXIST CVT2MIXC.OUT GOTO OKAY
  19.     CLS
  20.     ECHO The output file was not created.  A typical reason is that you have
  21.     ECHO not installed Parse-O-Matic, or have not placed it in your DOS PATH.
  22.     ECHO The file CVT2MIXC.POM explains how to get a copy of Parse-O-Matic.
  23.     ECHO  
  24.     ECHO If you require assistance, send mail to pinnacl@cam.org, or phone
  25.     ECHO our voice support line at +1-514-345-9578.
  26.     GOTO DONE
  27.  
  28. :OKAY
  29.     ECHO You can view the output file (CVT2MIXC.OUT) with a text viewer
  30.     ECHO program (such as Pinnacle Software's SEE program), or by loading
  31.     ECHO it into a generic text editor.
  32.  
  33. :DONE
  34.     ECHO  
  35.     PAUSE
  36.     CLS
  37.  
  38. :QUIT
  39.